1 2 3 4 5 6 7 8 9from seasons import get_date import pytest def test_get_date(): with pytest.raises(SystemExit): get_date("cat-dog-fish")
1 2 3 4 5 6 7 8 9
from seasons import get_date import pytest def test_get_date(): with pytest.raises(SystemExit): get_date("cat-dog-fish")